home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP Eylül 1998.iso / Slackwar / docs / Keyboard-and-Console-HOWTO < prev    next >
Text File  |  1997-11-15  |  61KB  |  1,420 lines

  1.   The Linux keyboard and console HOWTO
  2.   Andries Brouwer, aeb@cwi.nl
  3.   v2.7, 16 November 1997
  4.  
  5.   This note contains some information about the Linux keyboard and con¡
  6.   sole, and the use of non-ASCII characters.  It describes Linux 2.0.
  7.  
  8.   1.  Copyright
  9.  
  10.   Copyright (c) 1993-1997 by Andries Brouwer.  This document may be
  11.   distributed under the terms set forth in the LDP license at
  12.   http://sunsite.unc.edu/LDP/COPYRIGHT.html or
  13.   ftp://www.win.tue.nl/pub/linux/LDP/COPYRIGHT.txt.
  14.  
  15.   2.  Useful programs
  16.  
  17.   The following packages contain keyboard or console related programs.
  18.  
  19.   kbd-0.95.tar.gz contains loadkeys, dumpkeys, showkey, setmetamode,
  20.   setleds, setfont, showfont, mapscrn, kbd_mode, loadunimap, chvt,
  21.   resizecons, deallocvt, getkeycodes, setkeycodes.
  22.  
  23.   util-linux-2.6 contains setterm, kbdrate.  (Yes, the more in util-
  24.   linux-2.6 dumps core due to a name conflict. Preserve your old copy,
  25.   or use util-linux-2.5, or change `savetty' to `my_savetty' in more.c.)
  26.  
  27.   sh-utils-1.12 contains stty.
  28.  
  29.   open-1.4.tgz contains open (that should be renamed to openvt). (See
  30.   also dynamic-vc-1.1.tar.gz.)
  31.  
  32.   SVGATextMode-1.6.tar.gz contains SVGATextMode, a program that
  33.   obsoletes resizecons.
  34.  
  35.   The X distribution contains xmodmap, xset, kbd_mode.  (See also
  36.   X386keybd(1) for the situation under XFree86 1.3, and Xserver(1) for
  37.   the XKEYBOARD extension under X11R6.)
  38.  
  39.   termcap-2.0.8.tar.gz contains termcap, an old terminal capabilities
  40.   data base. ncurses-1.9.9e.tar.gz contains the termlib data base which
  41.   obsoletes termcap. (However, there are still many programs using
  42.   termcap.)
  43.  
  44.   See loadkeys(1), setleds(1) and setmetamode(1) for the codes generated
  45.   by the various keys and the setting of leds when not under X. Under X,
  46.   see xmodmap(1) and xset(1).
  47.  
  48.   See setfont(8) for loading console fonts. Many people will want to
  49.   load a font like iso01.f16 because the default font is the hardware
  50.   font of the video card, and often is a `Code Page 437' font missing
  51.   accented characters and other Latin-1 symbols.
  52.  
  53.   See setterm(1) and kbdrate(8) for properties such as foreground and
  54.   background colors, screen blanking and character repeat rate when not
  55.   under X.  Under X, see xset(1), also for key click and bell volume.
  56.  
  57.   The file /etc/termcap defines the escape sequences used by many
  58.   programs addressing the console (or any other terminal).  See
  59.   termcap(5).  A more modern version is found in /usr/lib/terminfo.  See
  60.   terminfo(5). Terminfo files are compiled by the terminfo compiler
  61.   /usr/lib/terminfo/tic, see tic(1).  Their contents can be examined
  62.   using the program infocmp, see infocmp(1).  The Linux console
  63.   sequences are documented in console_codes(4).
  64.   3.  Keyboard generalities
  65.  
  66.   You press a key, and the keyboard controller sends scancodes to the
  67.   kernel keyboard driver. Some keyboards can be programmed, but usually
  68.   the scancodes corresponding to your keys are fixed.  The kernel
  69.   keyboard driver just transmits whatever it receives to the application
  70.   program when it is in scancode mode, like when X is running.
  71.   Otherwise, it parses the stream of scancodes into keycodes,
  72.   corresponding to key press or key release events.  (A single key press
  73.   can generate up to 6 scancodes.)  These keycodes are transmitted to
  74.   the application program when it is in keycode mode (as used, for
  75.   example, by showkey).  Otherwise, these keycodes are looked up in the
  76.   keymap, and the character or string found there is transmitted to the
  77.   application, or the action described there is performed.  (For
  78.   example, if one presses and releases the a key, then the keyboard
  79.   produces scancodes 0x1e and 0x9e, this is converted to keycodes 30 and
  80.   158, and then transmitted as 0141, the ASCII or latin-1 code for `a';
  81.   if one presses and releases Delete, then the keyboard produces
  82.   scancodes 0xe0 0x53 0xe0 0xd3, these are converted to keycodes 111 and
  83.   239, and then transmitted as the 4-symbol sequence ESC [ 3 ~, all
  84.   assuming a US keyboard and a default keymap. An example of a key
  85.   combination to which an action is assigned is Ctrl-Alt-Del.)
  86.  
  87.   The translation between unusual scancodes and keycodes can be set
  88.   using the utility setkeycodes - only very few people will need it.
  89.   The translation between keycodes and characters or strings or actions,
  90.   that is, the keymap, is set using the utilities loadkeys and
  91.   setmetamode.  For details, see getkeycodes(8), setkeycodes(8),
  92.   dumpkeys(1), loadkeys(1), setmetamode(1). The format of the files
  93.   output by dumpkeys and read by loadkeys is described in keytables(5).
  94.  
  95.   Where it says `transmitted to the application' in the above
  96.   description, this really means `transmitted to the terminal driver'.
  97.   That is, further processing is just like that of text that comes in
  98.   over a serial line.  The details of this processing are set by the
  99.   program stty.
  100.  
  101.   4.  Console generalities
  102.  
  103.   Conversely, when you output something to the console, it first
  104.   undergoes the standard tty processing, and then is fed to the console
  105.   driver.  The console driver emulates a VT100, and parses the input in
  106.   order to recognize VT100 escape sequences (for cursor movement, clear
  107.   screen, etc.).  The characters that are not part of an escape sequence
  108.   are first converted into Unicode, using one of four mapping tables if
  109.   the console was not in UTF-8 mode to start with, then looked up in the
  110.   table describing the correspondence between Unicode values and font
  111.   positions, and the obtained 8- or 9-bit font indices are then written
  112.   to video memory, where they cause the display of character shapes
  113.   found in the video card's character ROM.  One can load one's own fonts
  114.   into character ROM using setfont, load the corresponding Unicode map
  115.   with loadunimap, and load a user mapping table using mapscrn.  More
  116.   details will be given below.
  117.  
  118.   There are many consoles (called Virtual Consoles or Virtual Terminals,
  119.   abbreviated VCs or VTs) that share the same screen. You can use them
  120.   as independent devices, either to run indendent login sessions, or
  121.   just to send some output to, perhaps from top, or the tail of the
  122.   system log or so.  See below (`Console switching') on how to set them
  123.   up and switch between them.
  124.  
  125.   5.  Resetting your terminal
  126.  
  127.   There is garbage on the screen, or all your keystrokes are echoed as
  128.   line drawing characters. What to do?
  129.  
  130.   Many programs will redraw the screen when ^L is typed. This might help
  131.   when there is some modem noise or broadcast message on your screen.
  132.   The command clear will clear the screen.
  133.  
  134.   The command reset will reset the console driver. This helps when the
  135.   screen is full of funny graphic characters, and also if it is reduced
  136.   to the bottom line. If you don't have this command, or if it does
  137.   something else, make your own by putting the following two lines in an
  138.   executable file reset in your PATH:
  139.  
  140.                #!/bin/sh
  141.                echo -e \\033c
  142.  
  143.   that is, you want to send the two characters ESC c to the console.
  144.  
  145.   Why is it that the display sometimes gets confused and gives you a
  146.   24-line or 1-line screen, instead of the usual 25 lines?  Well, the
  147.   main culprit is the use of TERM=vt100 (or some other entry with 24
  148.   lines) instead of TERM=linux when logged in remotely.  If this happens
  149.   on /dev/tty2 then typing
  150.  
  151.                % cat > /dev/tty2
  152.                ^[c
  153.                ^D
  154.  
  155.   on some other VT (where 4 symbols are typed to cat: ESC, c, ENTER,
  156.   Ctrl-D) and refreshing the screen on /dev/tty2 (perhaps using ^L) will
  157.   fix things. Of course the permanent fix is to use the right termcap or
  158.   terminfo entry.
  159.  
  160.   Why is it that you sometimes get a lot of line-drawing characters,
  161.   e.g., after catting a binary to the screen?  Well, there are various
  162.   character set changing escape sequences, and by accident your binary
  163.   might contain some of these.  The ESC c is a general reset, a cure for
  164.   all, but if you know precisely what went wrong you can repair it
  165.   without resetting other console attributes. For example, after
  166.  
  167.                % cat
  168.                ^N
  169.                ^D
  170.  
  171.   your shell prompt will be all line-drawing characters.  Now do (typing
  172.   blindly)
  173.  
  174.           % cat
  175.           ^O
  176.           ^D
  177.  
  178.   and all is well again. (Three symbols typed to each cat: ^N (or ^O),
  179.   ENTER, Ctrl-D.) To understand what is happening, see `The console
  180.   character sets' below.
  181.  
  182.   If you loaded some strange font, and want to return to the default,
  183.  
  184.                % setfont
  185.  
  186.   will do (provided you stored the default font in the default place).
  187.   If this default font does not contain an embedded Unicode map (and
  188.   gives the wrong symbols for accented characters), then say
  189.  
  190.                % loadunimap
  191.  
  192.   For example, if I do
  193.  
  194.                % loadkeys de-latin1
  195.  
  196.   then I have a German keyboard, and the key left of the Enter key gives
  197.   me a-umlaut. This works, because the a-umlaut occurs on the CP437 code
  198.   page and the kernel Unicode map is initialized to CP437, and my video
  199.   card has a CP437 font built-in.  If I now load an ISO 8859-1 font with
  200.  
  201.                % setfont iso01.f16
  202.  
  203.   then everything still works, because setfont invalidates the kernel
  204.   Unicode map (if there is no Unicode map attached to the font), and
  205.   without map the kernel goes directly to the font, and that is pre¡
  206.   cisely correct for an ISO 8859-1 system with iso01.f16 font.  But
  207.   going back to the previous font with
  208.  
  209.                % setfont
  210.  
  211.   gives capital Sigma's instead of a-umlaut - all accented letters are
  212.   mixed up because also this font has no embedded Unicode map. After
  213.  
  214.                % loadunimap
  215.  
  216.   which loads the default Unicode map (which is right for the default
  217.   font) all works correctly again. Usually loadunimap is not invoked
  218.   directly, but via setfont. Thus, the previous two commands may be
  219.   replaced by
  220.  
  221.                % setfont -u def
  222.  
  223.   The Ethiopian fonts and the lat1u*.psf fonts have embedded Unicode
  224.   code map. Most of the others don't.
  225.  
  226.   On old terminals output involving tabs may require a delay, and you
  227.   have to say
  228.  
  229.                % stty tab3
  230.  
  231.   (see stty(1)).
  232.  
  233.   You can change the video mode using resizecons or SVGATextMode.  This
  234.   usually settles the output side.  On the input side there are many
  235.   things that might be wrong. If X or DOOM or some other program using
  236.   raw mode crashed, your keyboard may still be in raw (or mediumraw)
  237.   mode, and it is difficult to give commands.  (See "How to get out of
  238.   raw mode" below.)  If you loaded a bad keymap, then
  239.  
  240.                % loadkeys -d
  241.  
  242.   loads the default map again, but it may well be difficult to type `-'!
  243.   An alternative is
  244.  
  245.                % loadkeys defkeymap
  246.  
  247.   Sometimes even the letters are garbled. It is useful to know that
  248.   there are four main types of keyboards: QWERTY, QWERTZ, AZERTY and
  249.   DVORAK.  The first three are named after the first six letter keys,
  250.   and roughly represent the English, German and French speaking coun¡
  251.   tries.  Compared to QWERTY, the QWERTZ map interchanges Y and Z.  Com¡
  252.   pared to QWERTY, the AZERTY map interchanges Q and A, W and Z, and has
  253.   its M right of the L, at the semicolon position.  DVORAK has an
  254.   entirely different letter ordering.
  255.  
  256.   5.1.  Keyboard hardware reset
  257.  
  258.   Things may be wrong on a lower level than Linux knows about.  There
  259.   are at least two distinct lower levels (keyboard and keyboard
  260.   controller) where one can give the command "keyboard disable" to the
  261.   keyboard hardware.  Keyboards can often be programmed to use one out
  262.   of three different sets of scancodes.
  263.  
  264.   However, I do not know of cases where this turned out to be a problem.
  265.  
  266.   Some keyboards have a remapping capability built in.  Stormy Henderson
  267.   (stormy@Ghost.Net) writes: `If it's your keyboard accidently being
  268.   reprogrammed, you can (on a Gateway AnyKey keyboard) press control-
  269.   alt-suspend_macro to reset the keys to normal.'
  270.  
  271.   6.  Delete and Backspace
  272.  
  273.   Getting Delete and Backspace to work just right is nontrivial,
  274.   especially in a mixed environment, where you talk to console, to X, to
  275.   bash, to emacs, login remotely, etc.  You may have to edit several
  276.   configuration files to tell all of the programs involved precisely
  277.   what you want.  On the one hand, there is the matter of which keys
  278.   generate which codes (and how these codes are remapped by e.g. kermit
  279.   or emacs), and on the other hand the question of what functions are
  280.   bound to what codes.
  281.  
  282.   People often complain `my backspace key does not work', as if this key
  283.   had a built-in function `delete previous character'.  Unfortunately,
  284.   all this key, or any key, does is producing a code, and one only can
  285.   hope that the kernel tty driver and all application programs can be
  286.   configured such that the backspace key indeed does function as a
  287.   `delete previous character' key.
  288.  
  289.   Most Unix programs get their tty input via the kernel tty driver in
  290.   `cooked' mode, and a simple stty command determines the erase
  291.   character. However, programs like bash and emacs and X do their own
  292.   input handling, and have to be convinced one-by-one to do the right
  293.   thing.
  294.  
  295.   6.1.  How to tell Unix what character you want to use to delete the
  296.   last typed character
  297.  
  298.                % stty erase ^?
  299.  
  300.   If the character is erased, but in a funny way, then something is
  301.   wrong with your tty settings. If echoprt is set, then erased charac¡
  302.   ters are enclosed between \ and /.  If echoe is not set, then the
  303.   erase char is echoed (which is reasonable when it is a printing char¡
  304.   acter, like #).  Most people will want stty echoe -echoprt. Saying
  305.   stty sane will do this and more. Saying stty -a shows your current
  306.   settings.  How come this is not right by default? It is, if you use
  307.   the right getty.
  308.  
  309.   Note that many programs (like bash, emacs etc.) have their own
  310.   keybindings (defined in ~/.inputrc, ~/.emacs etc.) and are unaffected
  311.   by the setting of the erase character.
  312.  
  313.   The standard Unix tty driver does not recognize a cursor, or keys
  314.   (like the arrow keys) to move the current position, and hence does not
  315.   have a command `delete current character' either. But for example you
  316.   can get bash on the console to recognize the Delete key by putting
  317.  
  318.           set editing-mode emacs
  319.           "\e[3~":delete-char
  320.  
  321.   into ~/.inputrc.
  322.  
  323.   6.1.1.  `Getty used to do the right thing with DEL and BS but is bro¡
  324.   ken now?'
  325.  
  326.   Earlier, the console driver would do BS Space BS (\010\040\010) when
  327.   it got a DEL (\177).  Nowadays, DEL's are ignored (as they should be,
  328.   since the driver emulates a vt100). Get a better getty, i.e., one that
  329.   does not output DEL.
  330.  
  331.   6.1.2.  `Login behaves differently at the first and second login
  332.   attempts?'
  333.  
  334.   At the first attempt, you are talking to getty. At the second attempt,
  335.   you are talking to login, a different program.
  336.  
  337.   6.2.  How to tell Linux what code to generate when a key is pressed
  338.  
  339.   On the console, or, more precisely, when not in (MEDIUM)RAW mode, use
  340.  
  341.                % loadkeys mykeys.map
  342.  
  343.   and under X use
  344.  
  345.                % xmodmap mykeys.xmap
  346.  
  347.   Note that (since XFree86-2.1) X reads the Linux settings of the
  348.   keymaps when initialising the X keymap. Although the two systems are
  349.   not 100% compatible, this should mean that in many cases the use of
  350.   xmodmap has become superfluous.
  351.  
  352.   For example, suppose that you would like the Backspace key to send a
  353.   BackSpace (^H, octal 010) and the grey Delete key a DEL (octal 0177).
  354.   Add the following to /etc/rc.local (or wherever you keep your local
  355.   boot-time stuff):
  356.  
  357.                /usr/bin/loadkeys << EOF
  358.                keycode 14 = BackSpace
  359.                keycode 111 = Delete
  360.                EOF
  361.  
  362.   Note that this will only change the function of these keys when no
  363.   modifiers are used. (You need to specify a keymaps line to tell which
  364.   keymaps should be affected if you want to change bindings on more
  365.   keymaps.)  The Linux kernel default lets Ctrl-Backspace generate
  366.   BackSpace - this is sometimes useful as emergency escape, when you
  367.   find you can only generate DELs.
  368.  
  369.   The left Alt key is sometimes called the Meta key, and by default the
  370.   combinations AltL-X are bound to the symbol MetaX.  But what character
  371.   sequence is MetaX?  That is determined (per-tty) by the Meta flag, set
  372.   by the command setmetamode. The two choices are: ESC X or X or-ed with
  373.   0200.
  374.  
  375.   6.2.1.  `Why doesn't the Backspace key generate BackSpace by default?'
  376.  
  377.   (i) Because the VT100 had a Delete key above the Enter key.
  378.  
  379.   (ii) Because Linus decided so.
  380.  
  381.   6.3.  How to tell X to interchange Delete and Backspace
  382.  
  383.                % xmodmap -e "keysym BackSpace = Delete" -e "keysym Delete = BackSpace"
  384.  
  385.   Or, if you just want the Backspace key to generate a BackSpace:
  386.  
  387.                % xmodmap -e "keycode 22 = BackSpace"
  388.  
  389.   Or, if you just want the Delete key to generate a Delete:
  390.  
  391.                % xmodmap -e "keycode 107 = Delete"
  392.  
  393.   (but usually this is the default binding already).
  394.  
  395.   6.4.  How to tell emacs what to do when it receives a Delete or
  396.   Backspace
  397.  
  398.   Put in your .emacs file lines like
  399.  
  400.                (global-set-key "\?" 'help-command)
  401.                (global-set-key "\C-h" 'delete-backward-char)
  402.  
  403.   Of course you can bind other commands to other keys in the same way.
  404.   Note that various major and minor modes redefine keybindings.  For
  405.   example, in incremental search mode one finds the code
  406.                (define-key map "\177" 'isearch-delete-char)
  407.                (define-key map "\C-h" 'isearch-mode-help)
  408.  
  409.   This means that it may be a bad idea to use the above two global-set-
  410.   key commands. There are too many places where there are built-in
  411.   assumptions about ^H = help and DEL = delete.  That doesn't mean that
  412.   you have to setup keys so that Backspace generates DEL. But if it
  413.   doesn't then it is easiest to remap them at the lowest possible level
  414.   in emacs.
  415.  
  416.   6.5.  How to tell emacs to interchange Delete and Backspace
  417.  
  418.   Put in your .emacs file lines
  419.  
  420.                (setq keyboard-translate-table (make-string 128 0))
  421.                (let ((i 0))
  422.                  (while (< i 128)
  423.                    (aset keyboard-translate-table i i)
  424.                    (setq i (1+ i))))
  425.                (aset keyboard-translate-table ?\b ?\^?)
  426.                (aset keyboard-translate-table ?\^? ?\b)
  427.  
  428.   Recent versions of emacs have a function keyboard-translate and one
  429.   may simplify the above to
  430.  
  431.                (keyboard-translate ?\C-h ?\C-?)
  432.                (keyboard-translate ?\C-? ?\C-h)
  433.  
  434.   Note that under X emacs can distinguish between Ctrl-h and the
  435.   Backspace key (regardless of what codes these produce on the console),
  436.   and by default emacs will view the Backspace key as DEL (and do dele¡
  437.   tion things, as bound to that character, rather than help things,
  438.   bound to ^H). One can distinguish Backspace and Delete, e.g. by
  439.  
  440.                (global-unset-key [backspace] )
  441.                (global-set-key [backspace] 'delete-backward-char)
  442.                (global-unset-key [delete] )
  443.                (global-set-key [delete] 'delete-char)
  444.  
  445.   6.6.  How to tell kermit to interchange Delete and Backspace
  446.  
  447.   Put in your .kermrc file the lines
  448.  
  449.                set key \127 \8
  450.                set key \8 \127
  451.  
  452.   6.7.  How to tell xterm about your favourite tty modes
  453.  
  454.   Normally xterm will inherit the tty modes from its invoker.  Under
  455.   xdm, the default erase and kill characters are # and @, as in good old
  456.   Unix Version 6.  If you don't like that, you might put something like
  457.  
  458.                XTerm*ttymodes: erase ^? kill ^U intr ^C quit ^\ eof ^D \
  459.                                susp ^Z start ^Q stop ^S eol ^@
  460.  
  461.   in /usr/lib/X11/app-defaults/XTerm or in $HOME/.Xresources, assuming
  462.   that you have a line
  463.  
  464.                xrdb $HOME/.Xresources
  465.  
  466.   in your $HOME/.xinitrc or $HOME/.xsession.
  467.  
  468.   6.8.  How to tell xmosaic that the Backspace key generates a DEL
  469.  
  470.   Putting
  471.  
  472.                *XmText.translations: #override\n\
  473.                   <Key>osfDelete: delete-previous-character()
  474.                *XmTextField.translations: #override\n\
  475.                   <Key>osfDelete: delete-previous-character()
  476.  
  477.   in your $HOME/.Xresources helps.
  478.  
  479.   The netscape FAQ, however, says:
  480.  
  481.           Why doesn't my Backspace key work in text fields?
  482.           By default, Linux and XFree86 come with the Backspace and Delete keys
  483.           misconfigured. All Motif programs (including, of course, Netscape
  484.           Navigator) will malfunction in the same way.
  485.  
  486.           The Motif spec says that Backspace is supposed to delete the previous
  487.           character and Delete is supposed to delete the following character.
  488.           Linux and XFree86 come configured with both the Backspace and Delete
  489.           keys generating Delete.
  490.  
  491.           You can fix this by using any one of the xmodmap, xkeycaps, or
  492.           loadkeys programs to make the key in question generate the BackSpace
  493.           keysym instead of Delete.
  494.  
  495.           You can also fix it by having a .motifbind file; see the man page
  496.           for VirtualBindings(3).
  497.  
  498.           Note: Don't use the *XmText.translations or *XmTextField.translations
  499.           resources to attempt to fix this problem. If you do, you will blow
  500.           away Netscape Navigator's other text-field key bindings.
  501.  
  502.   6.9.  A better solution for Motif-using programs, like netscape
  503.  
  504.   Ted Kandell (ted@tcg.net) suggests the following:
  505.  
  506.   Somewhere in your .profile add the following:
  507.  
  508.        stty erase ^H
  509.  
  510.   If you are using bash, add the following lines to your .inputrc:
  511.  
  512.        "\C-?": delete-char
  513.        "\C-h": backward-delete-char
  514.  
  515.   Add the following lines to your .xinitrc file:
  516.  
  517.        xmodmap <<-EOF
  518.        keycode 22  =  BackSpace osfBackSpace
  519.        keycode 107 =  Delete
  520.        EOF
  521.  
  522.        # start your window manager here,  for example:
  523.        #(fvwm) 2>&1 | tee /dev/tty /dev/console
  524.  
  525.        stty sane
  526.        stty erase ^H
  527.        loadmap <<-EOF
  528.        keycode 14  = BackSpace
  529.        keycode 111 = Delete
  530.        EOF
  531.  
  532.   This will definitely work for a PC 101 or 102 key keyboard with any
  533.   Linux/XFree86 layout.
  534.  
  535.   The important part to making Motif apps like Netscape work properly is
  536.   adding osfBackSpace to keycode 22 in addition to BackSpace.
  537.  
  538.   Note that there must be spaces on either side of the = sign.
  539.  
  540.   6.10.  What about termcap and terminfo?
  541.  
  542.   When people have problems with backspace, they tend to look at their
  543.   termcap (or terminfo) entry for the terminal, and indeed, there does
  544.   exist a kb (or kbs) capability describing the code generated by the
  545.   Backspace key.  However, not many programs use it, so unless you are
  546.   having problems with one particular program only, probably the fault
  547.   is elsewhere.  Of course it is a good idea anyway to correct your
  548.   termcap (terminfo) entry.  See also below under "The TERM variable".
  549.  
  550.   7.  The console character sets
  551.  
  552.   The kernel first tries to figure out what symbol is meant by any given
  553.   user byte, and next where this symbol is located in the current font.
  554.  
  555.   The kernel knows about 5 translations of bytes into console-screen
  556.   symbols.  In Unicode (UTF-8) mode, the UTF-8 code is just converted
  557.   directly into Unicode. The assumption is that almost all symbols one
  558.   needs are present in Unicode, and for the cases where this does not
  559.   hold the codes 0xff** are reserved for direct font access.  When not
  560.   in Unicode mode, one of four translation tables is used.  The four
  561.   tables are: a) Latin1 -> Unicode,  b) VT100 graphics -> Unicode, c) PC
  562.   -> Unicode, d) user-defined.
  563.  
  564.   There are two character sets, called G0 and G1, and one of them is the
  565.   current character set. (Initially G0.)  Typing ^N causes G1 to become
  566.   current, ^O causes G0 to become current.
  567.  
  568.   These variables G0 and G1 point at a translation table, and can be
  569.   changed by the user. Initially they point at tables a) and b),
  570.   respectively.  The sequences ESC ( B and ESC ( 0 and ESC ( U and ESC (
  571.   K cause G0 to point at translation table a), b), c) and d),
  572.   respectively.  The sequences ESC ) B and ESC ) 0 and ESC ) U and ESC )
  573.   K cause G1 to point at translation table a), b), c) and d),
  574.   respectively.
  575.  
  576.   The sequence ESC c causes a terminal reset, which is what you want if
  577.   the screen is all garbled. The oft-advised echo ^V^O will only make G0
  578.   current, but there is no guarantee that G0 points at table a).  In
  579.   some distributions there is a program reset(1) that just does echo
  580.   ^[c.  If your termcap entry for the console is correct (and has an
  581.   entry :rs=\Ec:), then also setterm -reset will work.
  582.  
  583.   The user-defined mapping table can be set using mapscrn(8).  The
  584.   result of the mapping is that if a symbol c is printed, the symbol s =
  585.   map[c] is sent to the video memory. The bitmap that corresponds to s
  586.   is found in the character ROM, and can be changed using setfont(8).
  587.  
  588.   8.  Console switching
  589.  
  590.   By default, console switching is done using Alt-Fn or Ctrl-Alt-Fn.
  591.   Under X (or recent versions of dosemu), only Ctrl-Alt-Fn works.  Many
  592.   keymaps will allow cyclic walks through all allocated consoles using
  593.   Alt-RightArrow and Alt-LeftArrow.
  594.  
  595.   XFree86 1.3 does not know that Alt is down when you switch to the X
  596.   window. Thus, you cannot switch immediately to some other VT again but
  597.   have to release Alt first.  In the other direction this should work:
  598.   the kernel always keeps track of the up/down status of all keys. (As
  599.   far as possible: on some keyboards some keys do not emit a scancode
  600.   when pressed (e.g.: the PFn keys of a FOCUS 9000) or released (e.g.:
  601.   the Pause key of many keyboards).)
  602.  
  603.   XFree86 1.3 saves the fonts loaded in the character ROMs when started,
  604.   and restores it on a console switch. Thus, the result of setfont on a
  605.   VT is wiped out when you go to X and back.  Using setfont under X will
  606.   lead to funny results.
  607.  
  608.   One can change VT under program control using the chvt command.
  609.  
  610.   8.1.  Changing the number of Virtual Consoles
  611.  
  612.   This question still comes up from time to time, but the answer is: you
  613.   already have enough of them.  Since kernel version 1.1.54, there are
  614.   between 1 and 63 virtual consoles. A new one is created as soon as it
  615.   is opened. It is removed by the utility deallocvt (but it can be
  616.   removed only when no processes are associated to it anymore, and no
  617.   text on it has been selected by programs like selection or gpm).
  618.  
  619.   For older kernels, change the line
  620.  
  621.                #define NR_CONSOLES     8
  622.  
  623.   in include/linux/tty.h (don't increase this number beyond 63), and
  624.   recompile the kernel.
  625.  
  626.   If they do not exist yet, create the tty devices with MAKEDEV or mknod
  627.   ttyN c 4 N where N denotes the tty number. For example,
  628.  
  629.                for i in 9 10 11 12; do mknod /dev/tty$i c 4 $i; done
  630.  
  631.   or, better (since it also takes care of owner and permissions),
  632.  
  633.                for i in 9 10 11 12; do /dev/MAKEDEV tty$i; done
  634.  
  635.   If you want the new VCs to run getty, add lines in /etc/inittab.  (But
  636.   it is much better to have only two getty's running, and to create more
  637.   consoles dynamically as the need arises.  That way you'll have more
  638.   memory when you don't use all these consoles, and also more consoles,
  639.   in case you really need them.  Edit /etc/inittab and comment out all
  640.   getty's except for the first two.)
  641.  
  642.   When the consoles are allocated dynamically, it is usually easiest to
  643.   have only one or two running getty. More are opened by open -l -s
  644.   bash. Unused consoles (without associated processes) are deallocated
  645.   using deallocvt (formerly disalloc).  But, you say, I am involved in
  646.   activities when I suddenly need more consoles, and do not have a bash
  647.   prompt available to give the open command.  Fortunately it is possible
  648.   to create a new console upon a single keystroke, regardless of what is
  649.   happening at the current console.
  650.  
  651.   If you have spawn_login from kbd-0.95.tar.gz and you put
  652.  
  653.                loadkeys << EOF
  654.                alt keycode 103 = Spawn_Console
  655.                EOF
  656.                spawn_login &
  657.  
  658.   in /etc/rc.local, then typing Alt-UpArrow will create a fresh VC
  659.   running login (and switch to it). With spawn_console & instead of
  660.   spawn_login & you'll have bash running there.  See also open-1.4.tgz
  661.   and dynamic-vc-1.1.tar.gz.
  662.  
  663.   What action should be taken upon this Spawn_Console keypress can also
  664.   be set in /etc/inittab under kbrequest, if you have a recent init. See
  665.   inittab(5).
  666.  
  667.   (This action can be something entirely different - I just called the
  668.   key Spawn_Console because that is what I used it for.  When used for
  669.   other purposes it is less confusing to use its synonym KeyboardSignal.
  670.   For example, some people like to put the lines
  671.  
  672.                kb::kbrequest:/sbin/shutdown -h now
  673.  
  674.   in /etc/inittab, and
  675.  
  676.                control alt keycode 79 = KeyboardSignal
  677.                control alt keycode 107 = KeyboardSignal
  678.  
  679.   in their keymap. Now Ctrl-Alt-End will do a system shutdown.)
  680.  
  681.   You can only login as "root" on terminals listed in /etc/securetty.
  682.   There exist programs that read terminal settings from files /etc/ttys
  683.   and /etc/ttytype. If you have such files, and create additional
  684.   consoles, then it might be a good idea to also add entries for them in
  685.   these files.
  686.  
  687.   9.  Ctrl-Alt-Del and other special key combinations
  688.  
  689.   9.1.  Ctrl-Alt-Del (Boot)
  690.  
  691.   If you press Ctrl-Alt-Del (or whatever key was assigned the keysym
  692.   Boot by loadkeys) then either the machine reboots immediately (without
  693.   sync), or init is sent a SIGINT. The former behaviour is the default.
  694.   The default can be changed by root, using the system call reboot(),
  695.   see ctrlaltdel(8).  Some init's change the default. What happens when
  696.   init gets SIGINT depends on the version of init used - often it will
  697.   be determined by the pf entry in /etc/inittab (which means that you
  698.   can run an arbitrary program in this case).  In the current kernel
  699.   Ctrl-AltGr-Del is no longer by default assigned to Boot.
  700.  
  701.   9.2.  Other combinations
  702.  
  703.   Name            Default binding
  704.   -------------------------------
  705.   Show_Memory     Shift-Scrollock
  706.   Show_Registers  AltGr-ScrollLock
  707.   Show_State      Ctrl-ScrollLock
  708.   Console_n       Alt-Fn and Ctrl-Alt-Fn  (1 <= n <= 12)
  709.   Console_{n+12}  AltGr-Fn                (1 <= n <= 12)
  710.   Incr_Console    Alt-RightArrow
  711.   Decr_Console    Alt-LeftArrow
  712.   Last_Console    Alt[Gr]-PrintScreen
  713.   Scroll_Backward Shift-PageUp
  714.   Scroll_Forward  Shift-PageDown
  715.   Caps_On                                 (CapsLock is a toggle; this key sets)
  716.   Compose         Ctrl-.
  717.  
  718.   9.3.  X Combinations
  719.  
  720.   Ctrl-Alt-Fn     Switch to VT n
  721.   Ctrl-Alt-KP+    Next mode
  722.   Ctrl-Alt-KP-    Previous mode
  723.   Ctrl-Alt-Backspace      Kill X
  724.  
  725.   On some motherboards, Ctrl-Alt-KP- and Ctrl-Alt-KP+ will be equivalent
  726.   to pressing the Turbo button. That is, both will produce the scancodes
  727.   1d 38 4a ca b8 9d and 1d 38 4e ce b8 9d, and both will switch between
  728.   Turbo (>= 25MHz) and non-Turbo (8 or 12 MHz).  (Often these key combi¡
  729.   nations only function this way when enabled by jumpers on the mother¡
  730.   board.)
  731.  
  732.   Perry F Nguyen (pfnguyen@netcom22.netcom.com) writes: AMI BIOS has a
  733.   feature that locks up the keyboard and flashes the LED's if the Ctrl-
  734.   Alt-Backspace combination is pressed while a BIOS password is enabled,
  735.   until the CMOS/BIOS password is typed in.
  736.  
  737.   9.4.  Dosemu Combinations
  738.  
  739.   Ctrl-Alt-Fn     Switch to VT n (from version 0.50; earlier Alt-Fn)
  740.   Ctrl-Alt-PgDn   Kill dosemu (when in RAW keyboard mode)
  741.   (and many other combinations - see the dosemu documentation)
  742.  
  743.   9.5.  Composing symbols
  744.  
  745.   One symbol may be constructed using several keystrokes.
  746.  
  747.   ╖  LeftAlt-press, followed by a decimal number typed on the keypad,
  748.      followed by LeftAlt-release, yields the symbol with code given by
  749.      this number.  (In Unicode mode this same mechanism, but then with 4
  750.      hexadecimal digits, may be used to define a Unicode symbol.)
  751.  
  752.   ╖  A dead diacritic followed by a symbol, yields that symbol adorned
  753.      with that diacritic. If the combination is undefined, both keys are
  754.      taken separately.  Which keys are dead diacritics is user-settable;
  755.      none is by default.  Five (since 2.0.25 six) dead diacritics can be
  756.      defined (using loadkeys(1)): dead_grave, dead_acute,
  757.      dead_circumflex, dead_tilde, dead_diaeresis (and dead_cedilla).
  758.      Precisely what this adorning means is also user-settable: dead-
  759.      diacritic, symbol is equivalent to Compose + diacritic + symbol.
  760.  
  761.   ╖  Compose followed by two symbols yields a combination symbol. These
  762.      combinations are user-settable. Today there are 68 combinations
  763.      defined by default; you can see them by saying "dumpkeys | grep
  764.      compose".
  765.  
  766.   ╖  Then there are `Sticky' modifier keys (since 1.3.33). For example,
  767.      one can type ^C as SControl, C and Ctrl-Alt-BackSpace as SControl,
  768.      SAlt, BackSpace.
  769.  
  770.   Note that there are at least three such composition mechanisms:
  771.  
  772.   1. The Linux keyboard driver mechanism, used in conjunction with
  773.      loadkeys.
  774.  
  775.   2. The X mechanism - see X386keybd(1), later XFree86kbd(1).  Under
  776.      X11R6: edit /usr/X11R6/lib/X11/locale/iso8859-1/Compose.
  777.  
  778.      See also Andrew D. Balsa's comments at
  779.      http://wauug.erols.com/~balsa/linux/deadkeys/index.html.
  780.  
  781.   3. The emacs mechanism obtained by loading "iso-insert.el" or calling
  782.      `iso-accents-mode'.
  783.  
  784.      For X the order of the two symbols is arbitrary: both Compose-,-c
  785.      and Compose-c-, yield a c-cedilla; for Linux and emacs only the
  786.      former sequence works by default. For X the list of compose
  787.      combinations is fixed. Linux and emacs are flexible.  The three
  788.      default lists are somewhat similar, but the details are different.
  789.  
  790.   10.  How to get out of raw mode
  791.  
  792.   If some program using K_RAW keyboard mode exits without restoring the
  793.   keyboard mode to K_XLATE, then it is difficult to do anything - not
  794.   even Ctrl-Alt-Del works. However, it is sometimes possible to avoid
  795.   hitting the reset button.  (And desirable as well: your users may get
  796.   angry if you kill their Hack game by rebooting; you might also damage
  797.   your file system.)  Easy solutions involve logging in from another
  798.   terminal or another machine and doing kbd_mode -a.  The procedure
  799.   below assumes that no X is running, that the display is in text mode,
  800.   and that you are at your bash prompt, that you are using a US keyboard
  801.   layout, and that your interrupt character is Ctrl-C.
  802.  
  803.   Step 1. Start X.  As follows: press 2 (and don't release), press F12
  804.   (and don't release) and immediately afterwards press = . This starts
  805.   X.  (Explanation: if a key press produces keycode K, then the key
  806.   release produces keycode K+128. Probably your shell does not like
  807.   these high characters, so we avoid generating them by not releasing
  808.   any key.  However, we have to be quick, otherwise key repeat starts.
  809.   The digit 2 produces a Ctrl-C that discards previous junk, the F12
  810.   produces an X and the = a Return.)  Probably your screen will be grey
  811.   now, since no .xinitrc was specified.  However, Ctrl-Alt-Fn will work
  812.   and you can go to another VT.  (Ctrl-Alt-Backspace also works, but
  813.   that exits X, and gets you back into the previous state, which is not
  814.   what you want.)
  815.  
  816.   Step 2. Setup to change the keyboard mode.  (For example, by sleep 5;
  817.   kbd_mode -a.)
  818.  
  819.   Step 3. Leave X again.  Alt-Fx (often Alt-F7) brings you back to X,
  820.   and then Ctrl-Alt-Backspace exits X. Within 5 seconds your keyboard
  821.   will be usable again.
  822.   If you want to prepare for the occasion, then make \215A\301 (3
  823.   symbols) an alias for kbd_mode -a.  Now just hitting = F7 = (3
  824.   symbols) will return you to sanity.
  825.  
  826.   11.  The keyboard LEDs
  827.  
  828.   1. There are per-tty keyboard flags: each VC has its own NumLock,
  829.   CapsLock, ScrollLock.  By default these keyboard flags are shown in
  830.   the LEDs.  The usual way to change them is by pressing the
  831.   corresponding key.  (Side remark: pressing the NumLock key when in
  832.   application key mode will not change the NumLock status, but produce
  833.   an escape sequence.  If you want the NumLock key to always change the
  834.   Numlock status, bind it to Bare_Num_Lock.)
  835.  
  836.   2. Next, there are per-tty default keyboard flags, to initialize the
  837.   keyboard flags when a reset occurs.  Thus if you want NumLock on all
  838.   the time, that is possible.  The usual way to change them is by
  839.   `setleds -D ...'.
  840.  
  841.   3. There is the possibility that the leds do not reflect the keyboard
  842.   flags, but something else.
  843.  
  844.   3A. This something else can be three bits somewhere in the kernel -
  845.   which can be used if you want to monitor some hardware or software
  846.   status bit(s). If you want this, edit the kernel source to call
  847.   register_leds() somewhere.
  848.  
  849.   3B. This something else can also be whatever some user program wants
  850.   to show in the LEDs. Thus, people who like such things can make nice
  851.   patterns of lights. If you want this, use the KDSETLED ioctl.
  852.  
  853.   This latter use is not per-tty, but the choice between former and
  854.   latter use is per-tty.
  855.  
  856.   Summarizing: Each tty has a flag kbd->ledmode.  If this has the value
  857.   LED_SHOW_FLAGS then the keyboard flags (NumLock etc.) of that tty are
  858.   shown.  If this has the value LED_SHOW_MEM then three selected memory
  859.   addresses are shown.  If this has the value LED_SHOW_IOCTL then the
  860.   leds show whatever value was last assigned to them using the KDSETLED
  861.   ioctl.
  862.  
  863.   One may add that X uses ioctl's to set the LEDs, but fails to reset
  864.   its VT when it exits, so after using X there may be one VT that is not
  865.   in the default LED_SHOW_FLAGS state.  This can be fixed by doing
  866.   `setleds -L' on that VT.  See setleds(1).
  867.  
  868.   12.  The TERM variable
  869.  
  870.   Many programs use the TERM variable and the database /etc/termcap or
  871.   /usr/lib/terminfo/* to decide which strings to send for clear screen,
  872.   move cursor, etc., and sometimes also to decide which string is sent
  873.   by the users backspace key, function keys etc.  This value is first
  874.   set by the kernel (for the console).  Usually, this variable is re-set
  875.   by getty, using /etc/ttytype or the argument specified in
  876.   /etc/inittab.  Sometimes, it is also set in /etc/profile.
  877.  
  878.   Older systems use TERM=console or TERM=con80x25. Newer systems (with
  879.   ncurses 1.8.6) use the more specific TERM=linux or TERM=linux-80x25.
  880.   However, old versions of setterm test for TERM=con* and hence fail to
  881.   work with TERM=linux.
  882.  
  883.   Since kernel version 1.3.2, the kernel default for the console is
  884.   TERM=linux.
  885.  
  886.   If you have a termcap without entry for linux, add the word linux to
  887.   the entry for the console:
  888.  
  889.                console|con80x25|linux:\
  890.  
  891.   and make /usr/lib/terminfo/l/linux a copy of or symbolic link to
  892.   /usr/lib/terminfo/c/console.
  893.  
  894.   12.1.  Terminfo
  895.  
  896.   The terminfo entry for the linux console from ncurses 1.8.6 misses the
  897.   entry kich1=\E[2~, needed by some programs.  Edit the file and tic it.
  898.  
  899.   13.  How to make other programs work with non-ASCII chars
  900.  
  901.   In the bad old days this used to be quite a hassle. Every separate
  902.   program had to be convinced individually to leave your bits alone.
  903.   Not that all is easy now, but recently a lot of gnu utilities have
  904.   learned to react to LC_CTYPE=iso_8859_1 or LC_CTYPE=iso-8859-1.  Try
  905.   this first, and if it doesn't help look at the hints below.  Note that
  906.   in recent versions of libc the routine setlocale() only works if you
  907.   have installed the locale files (e.g. in /usr/lib/locale).
  908.  
  909.   First of all, the 8-th bit should survive the kernel input processing,
  910.   so make sure to have stty cs8 -istrip -parenb set.
  911.  
  912.   A. For emacs the details strongly depend on the version.  The
  913.   information below is for version 19.34. Put lines
  914.  
  915.                (set-input-mode nil nil 1)
  916.                (standard-display-european t)
  917.                (require 'iso-syntax)
  918.  
  919.   into your $HOME/.emacs.  The first line (to be precise: the final 1)
  920.   tells emacs not to discard the 8-th bit from input characters.  The
  921.   second line tells emacs not to display non-ASCII characters as octal
  922.   escapes.  The third line specifies the syntactic properties and case
  923.   conversion table for the Latin-1 character set These last two lines
  924.   are superfluous if you have something like LC_CTYPE=ISO-8859-1 in your
  925.   environment.  (The variable may also be LC_ALL or even LANG.  The
  926.   value may be anything with a substring `88591' or `8859-1' or
  927.   `8859_1'.)
  928.  
  929.   This is a good start.  On a terminal that cannot display non-ASCII ISO
  930.   8859-1 symbols, the command
  931.  
  932.                (load-library "iso-ascii")
  933.  
  934.   will cause accented characters to be displayed comme {,c}a.  If your
  935.   keymap does not make it easy to produce non-ASCII characters, then
  936.  
  937.                (load-library "iso-transl")
  938.  
  939.   will make the 2-character sequence Ctrl-X 8 a compose character, so
  940.   that the 4-character sequence Ctrl-X 8 , c produces c-cedilla.  Very
  941.   inconvenient.
  942.  
  943.   The command
  944.  
  945.                (iso-accents-mode)
  946.  
  947.   will toggle ISO-8859-1 accent mode, in which the six characters ', `,
  948.   ", ^, ~, / are dead keys modifying the following symbol.  Special com¡
  949.   binations: ~c gives a c with cedilla, ~d gives an Icelandic eth, ~t
  950.   gives an Icelandic thorn, "s gives German sharp s, /a gives a with
  951.   ring, /e gives an a-e ligature, ~< and ~> give guillemots, ~! gives an
  952.   inverted exclamation mark, ~? gives an inverted question mark, and ''
  953.   gives an acute accent.  This is the default mapping of accents.  The
  954.   variable iso-languages is a list of pairs (language name, accent map¡
  955.   ping), and a non-default mapping can be selected using
  956.  
  957.                (iso-accents-customize LANGUAGE)
  958.  
  959.   Here LANGUAGE can be one of "portuguese", "irish", "french",
  960.   "latin-2", "latin-1".
  961.  
  962.   Since the Linux default compose character is Ctrl-.  it might be
  963.   convenient to use that everywhere. Try
  964.  
  965.                (load-library "iso-insert.el")
  966.                (define-key global-map [?\C-.] 8859-1-map)
  967.  
  968.   The latter line will not work under xterm, if you use emacs -nw, but
  969.   in that case you can put
  970.  
  971.                XTerm*VT100.Translations:       #override\n\
  972.                      Ctrl <KeyPress> . : string("\0308")
  973.  
  974.   in your .Xresources.)
  975.  
  976.   B. For less, put LESSCHARSET=latin1 in the environment.  This is also
  977.   what you need if you see \255 or <AD> in man output: some versions of
  978.   less will render the soft hyphen (octal 0255, hex 0xAD) this way when
  979.   not given permission to output Latin-1.
  980.   C. For ls, give the option -N. (Probably you want to make an alias.)
  981.  
  982.   D. For bash (version 1.13.*), put
  983.  
  984.                set meta-flag on
  985.                set convert-meta off
  986.  
  987.   and, according to the Danish HOWTO,
  988.  
  989.                set output-meta on
  990.  
  991.   into your $HOME/.inputrc.
  992.  
  993.   E. For tcsh, use
  994.  
  995.                setenv LANG     US_en
  996.                setenv LC_CTYPE iso_8859_1
  997.  
  998.   If you have nls on your system, then the corresponding routines are
  999.   used.  Otherwise tcsh will assume iso_8859_1, regardless of the values
  1000.   given to LANG and LC_CTYPE. See the section NATIVE LANGUAGE SYSTEM in
  1001.   tcsh(1).  (The Danish HOWTO says: setenv LC_CTYPE ISO-8859-1; stty
  1002.   pass8)
  1003.  
  1004.   F. For flex, give the option -8 if the parser it generates must be
  1005.   able to handle 8-bit input. (Of course it must.)
  1006.  
  1007.   G. For elm, set displaycharset to ISO-8859-1.  (Danish HOWTO: LANG=C
  1008.   and LC_CTYPE=ISO-8859-1)
  1009.  
  1010.   H. For programs using curses (such as lynx) David Sibley reports: The
  1011.   regular curses package uses the high-order bit for reverse video mode
  1012.   (see flag _STANDOUT defined in /usr/include/curses.h).  However,
  1013.   ncurses seems to be 8-bit clean and does display iso-latin-8859-1
  1014.   correctly.
  1015.  
  1016.   I. For programs using groff (such as man), make sure to use -Tlatin1
  1017.   instead of -Tascii. Old versions of the program man also use col, and
  1018.   the next point also applies.
  1019.  
  1020.   J. For col, make sure 1) that it is fixed so as to do
  1021.   setlocale(LC_CTYPE,""); and 2) put LC_CTYPE=ISO-8859-1 in the
  1022.   environment.
  1023.  
  1024.   K. For rlogin, use option -8.
  1025.  
  1026.   L. For joe,
  1027.   sunsite.unc.edu:/pub/Linux/apps/editors/joe-1.0.8-linux.tar.gz is said
  1028.   to work after editing the configuration file. Someone else said: joe:
  1029.   Put the -asis option in /isr/lib/joerc in the first column.
  1030.  
  1031.   M. For LaTeX: \documentstyle[isolatin]{article}.  For LaTeX2e:
  1032.   \documentclass{article}\usepackage{isolatin} where isolatin.sty is
  1033.   available from ftp://ftp.vlsivie.tuwien.ac.at/pub/8bit.
  1034.   A nice discussion on the topic of ISO-8859-1 and how to manage 8-bit
  1035.   characters is contained in the file grasp.insa-
  1036.   lyon.fr:/pub/faq/fr/accents (in French). Another fine discussion (in
  1037.   English) can be found in ftp.vlsivie.tuwien.ac.at:/pub/8bit/FAQ-
  1038.   ISO-8859-1, which is mirrored in rtfm.mit.edu:pub/usenet-by-
  1039.   group/comp.answers/character-sets/iso-8859-1-faq.
  1040.  
  1041.   If you need to fix a program that behaves badly with 8-bit characters,
  1042.   one thing to keep in mind is that if you have a signed char type then
  1043.   characters may be negative, and using them as an array index will
  1044.   fail.  Several programs can be fixed by judiciously adding (unsigned
  1045.   char) casts.
  1046.  
  1047.   14.  What precisely does XFree86-2.1 do when it initializes its
  1048.   keymap?
  1049.  
  1050.   Since version 2.1, XFree86 will initialize its keymap from the Linux
  1051.   keymap, as far as possible. However, Linux had 16 entries per key (one
  1052.   for each combination of the Shift, AltGr, Ctrl, Alt modifiers) and
  1053.   presently has 256 entries per key, while X has 4 entries per key (one
  1054.   for each combination of Shift, Mod), so some information is
  1055.   necessarily lost.
  1056.  
  1057.   First X reads the Xconfig file, where definitions of the LeftAlt,
  1058.   RightAlt, RightCtl, ScrollLock keys as Meta, ModeShift, Compose,
  1059.   ModeLock or ScrollLock might be found - see X386keybd(1), later
  1060.   XFree86kbd(1).
  1061.  
  1062.   For Mod the LeftAlt key is taken, unless RightCtl was defined as
  1063.   ModeShift or ModeLock, in which case RightCtl is taken, or RightAlt
  1064.   was so defined, in which case RightAlt is taken.  This determines how
  1065.   the 4 XFree86 meanings of a key are selected from the 16 Linux
  1066.   meanings.  Note that Linux today does not distinguish by default
  1067.   between the two Ctrl keys or between the two Shift keys. X does
  1068.   distinguish.
  1069.  
  1070.   Now the kernel keymap is read and the usually obvious corresponding X
  1071.   bindings are made. The bindings for the "action keys" Show_Memory,
  1072.   Show_State, Show_Registers, Last_Console, Console_n, Scroll_Backward,
  1073.   Scroll_Forward, Caps_On and Boot are ignored, as are the dead
  1074.   diacriticals, and the locks (except for ShiftLock), and the "ASCII-x"
  1075.   keys.
  1076.  
  1077.   Next, the definitions in the Xconfig file are used. (Thus, a
  1078.   definition of Compose in Xconfig will override its value as found in
  1079.   the Linux keymap.)
  1080.  
  1081.   What happens to the strings associated with the function keys?
  1082.   Nothing, X does not have such a concept. (But it is possible to define
  1083.   strings for function keys in xterm - note however that the window
  1084.   manager gets the keys first.)
  1085.  
  1086.   I don't know how to convince xterm that it should use the X keymap
  1087.   when Alt is pressed; it seems just to look at its resource
  1088.   eightBitInput, and depending on whether that is true or false either
  1089.   set the high order bit of the character, or generate an additional
  1090.   Escape character (just like setmetamode(1) does for the console).
  1091.  
  1092.   15.  Unusual keys and keyboards
  1093.  
  1094.   The two keys PrintScrn/SysRq and Pause/Break are special in that they
  1095.   have two keycodes: the former has keycode 84 when Alt is pressed
  1096.   simultaneously, and keycode 99 otherwise; the latter has keycode 101
  1097.   when Ctrl is pressed simultaneously, and keycode 119 otherwise.
  1098.   (Thus, it makes no sense to bind functions to Alt keycode 99 or Ctrl
  1099.   keycode 119.)
  1100.  
  1101.   If you have strange keys, that do not generate any code under Linux
  1102.   (or generate messages like "unrecognized scancode"), and your kernel
  1103.   is 1.1.63 or later, then you can use setkeycodes(1) to tell the kernel
  1104.   about them. They won't work under X, however.  Once they have gotten a
  1105.   keycode from setkeycodes, they can be assigned a function by loadkeys.
  1106.  
  1107.   16.  Examples of use of loadkeys and xmodmap
  1108.  
  1109.   Switching Caps Lock and Control on the keyboard (assuming you use
  1110.   keymaps 0-15; check with dumpkeys | head -1)
  1111.  
  1112.                % loadkeys
  1113.                keymaps 0-15
  1114.                keycode 58 = Control
  1115.                keycode 29 = Caps_Lock
  1116.                %
  1117.  
  1118.   Switching them under X only:
  1119.  
  1120.                % xmodmap .xmodmaprc
  1121.  
  1122.   where .xmodmaprc contains lines
  1123.  
  1124.                remove Lock = Caps_Lock
  1125.                remove Control = Control_L
  1126.                keysym Control_L = Caps_Lock
  1127.                keysym Caps_Lock = Control_L
  1128.                add Lock = Caps_Lock
  1129.                add Control = Control_L
  1130.  
  1131.   What is this about the key numbering? Backspace is 14 under Linux, 22
  1132.   under X?  Well, the numbering can best be regarded as arbitrary; the
  1133.   Linux number of a key can be found using showkey(1), and the X number
  1134.   using xev(1). Often the X number will be 8 more than the Linux number.
  1135.  
  1136.   Something else people like to change are the bindings of the function
  1137.   keys.  Suppose that you want to make F12 produce the string "emacs ".
  1138.   Then
  1139.  
  1140.                % loadkeys
  1141.                keycode 88 = F12
  1142.                string F12 = "emacs "
  1143.                %
  1144.  
  1145.   will do this. More explicitly, the procedure is like this: (i) find
  1146.   the keycodes of the keys to be remapped, using showkey(1).  (ii) save
  1147.   the current keymap, make a copy and edit that:
  1148.  
  1149.                % dumpkeys > my_keymap
  1150.                % cp my_keymap trial_keymap
  1151.                % emacs trial_keymap
  1152.                % loadkeys trial_keymap
  1153.                %
  1154.  
  1155.   The format of the table can be guessed by looking at the output of
  1156.   dumpkeys, and is documented in keytables(5).  When the new keymap
  1157.   functions as desired, you can put an invocation
  1158.  
  1159.                loadkeys my_new_keymap
  1160.  
  1161.   in /etc/rc.local or so, to execute it automatically at boot-up.  Note
  1162.   that changing modifier keys is tricky, and a newbie can easily get
  1163.   into a situation only an expert can get out of.
  1164.  
  1165.   The default directory for keymaps is /usr/lib/kbd/keytables.  The
  1166.   default extension for keymaps is .map.  Thus, loadkeys uk would
  1167.   probably load /usr/lib/kbd/keytables/uk.map.
  1168.  
  1169.   (On my machine) /dev/console is a symbolic link to /dev/tty0, and the
  1170.   kernel regards /dev/tty0 as a synonym for the current VT.  XFree86 1.3
  1171.   changes the owner of /dev/tty0, but does not reset this after
  1172.   finishing. Thus, loadkeys or dumpkeys might fail because someone else
  1173.   owns /dev/tty0; in such a case you might run X first.  Note that you
  1174.   cannot change keyboard mappings when not at the console (and not
  1175.   superuser).
  1176.  
  1177.   16.1.  `I can use only one finger to type with'
  1178.  
  1179.   "Can the Shift, Ctrl and Alt keys be made to behave as toggles?"
  1180.  
  1181.   Yes, after saying
  1182.  
  1183.                % loadkeys
  1184.                keymaps 0-15
  1185.                keycode 29 = Control_Lock
  1186.                keycode 42 = Shift_Lock
  1187.                keycode 56 = Alt_Lock
  1188.                %
  1189.  
  1190.   the left Control, Shift and Alt keys will act as toggles.  The numbers
  1191.   involved are revealed by showkey (and usually are 29, 97, 42, 54, 56,
  1192.   100 for left and right control, shift and alt, respectively), and the
  1193.   functions are Control_Lock, Shift_Lock, Alt_Lock, ALtGr_Lock.
  1194.  
  1195.   "What about `sticky' modifier keys?"
  1196.  
  1197.   Since version 1.3.33, the kernel knows about `sticky' modifier keys.
  1198.   These act on the next key pressed. So, where one earlier needed the
  1199.   3-symbol sequence Shift_Lock a Shift_Lock to type `A', one can now use
  1200.   the 2-symbol sequence SShift_Lock a.  Versions of the kbd package
  1201.   older than 0.93 do not yet include code for these sticky modifiers,
  1202.   and have to invoke them using their hexadecimal codes. For example,
  1203.  
  1204.                % loadkeys
  1205.                keymaps 0-15
  1206.                keycode 54 = 0x0c00
  1207.                keycode 97 = 0x0c02
  1208.                keycode 100 = 0x0c03
  1209.                %
  1210.  
  1211.   will make the right Shift, Ctrl, Alt sticky versions of the left ones.
  1212.   From 0.93 on you can say
  1213.  
  1214.                % loadkeys
  1215.                keymaps 0-15
  1216.                keycode 54 = SShift
  1217.                keycode 97 = SCtrl
  1218.                keycode 100 = SAlt
  1219.                %
  1220.  
  1221.   to obtain the same result.  This will allow you to type Ctrl-Alt-Del
  1222.   in three keystrokes with one hand.
  1223.  
  1224.   The keymaps line in these examples should cover all keymaps you have
  1225.   in use.  You find what keymaps you have in use by
  1226.  
  1227.                % dumpkeys | head -1
  1228.  
  1229.   17.  Changing the video mode
  1230.  
  1231.   As far as I know there are 6 ways to change resolution:
  1232.  
  1233.   1. At compile time: change the line
  1234.  
  1235.                SVGA_MODE=      -DSVGA_MODE=NORMAL_VGA
  1236.  
  1237.   in /usr/src/linux/Makefile.
  1238.  
  1239.   1A. After compilation: use rdev -v - a terrible hack, but it exists.
  1240.  
  1241.   2. At boot time: put vga=ask in the lilo config file, and lilo will
  1242.   ask you what video mode you want. Once you know, put vga=mypreference.
  1243.  
  1244.   3. At run time: A. Use the resizecons command. (This is a very
  1245.   primitive wrapper around the VT_RESIZE ioctl.)  B. Use the
  1246.   SVGATextMode command. (This is a less primitive wrapper around the
  1247.   VT_RESIZE ioctl.)
  1248.  
  1249.   4. Not "on the console": Under dosemu, or with svgalib etc. you can
  1250.   change the hardware video mode without the console driver being aware
  1251.   of it. Sometimes this is useful in getting resizecons or SVGATextMode
  1252.   set up: use dosemu and some DOS program to get into the desired
  1253.   videomode, dump (say from another VT) the contents of all video
  1254.   hardware registers, and use that in the initialization that resizecons
  1255.   and SVGATextMode require.  In some cases where the video mode has
  1256.   gotten into some unusable state, starting dosemu, relying on the BIOS
  1257.   to set up the video mode, and then killing dosemu (with kill -9), is
  1258.   the easiest way to get into shape again.
  1259.  
  1260.   17.1.  Instructions for the use of resizecons
  1261.  
  1262.   Get svgalib and compile the program restoretextmode.  Boot up your
  1263.   machine in all possible video modes (using vga=ask in the lilo config
  1264.   file), and write the video hardware register contents to files CxR
  1265.   (C=cols, R=rows), e.g., 80x25, 132x44, etc.  Put these files in
  1266.   /usr/lib/kbd/videomodes.  Now resizecons 132x44 will change videomode
  1267.   for you (and send SIGWINCH to all processes that need to know about
  1268.   this, and load another font if necessary).
  1269.  
  1270.   At present, resizecons only succeeds when there is memory enough for
  1271.   both the old and the new consoles at the same time.
  1272.  
  1273.   18.  Changing the keyboard repeat rate
  1274.  
  1275.   At startup, the Linux kernel sets the repeat rate to its maximal
  1276.   value.  For most keyboards this is reasonable, but for some it means
  1277.   that you can hardly touch a key without getting three copies of the
  1278.   corresponding symbol. Use the program kbdrate(8) to change the repeat
  1279.   rate, or, if that doesn't help, edit or remove the section
  1280.  
  1281.   ______________________________________________________________________
  1282.        ! set the keyboard repeat rate to the max
  1283.  
  1284.            mov     ax,#0x0305
  1285.            xor     bx,bx           ! clear bx
  1286.            int     0x16
  1287.   ______________________________________________________________________
  1288.  
  1289.   of /usr/src/linux/[arch/i386/]boot/setup.S.
  1290.  
  1291.   19.  Scrolling
  1292.  
  1293.   There are two ways to get a screen to scroll.  The first, called `hard
  1294.   scrolling', is to leave the text in video memory as it is, but change
  1295.   the viewing origin. This is very fast.  The second, called `soft
  1296.   scrolling', involves moving all screen text up or down. This is much
  1297.   slower.  The kernel console driver will write text starting at the top
  1298.   of the video memory, continuing to the bottom, then copy the bottom
  1299.   part to the top again, and continue, all the time using hard scrolling
  1300.   to show the right part on the screen.  You can scroll back until the
  1301.   top op the video memory by using Shift-PageUp (the grey PageUp) and
  1302.   scroll down again using Shift-PageDown (the grey PageDown), assuming a
  1303.   default keymap.  The amount of scrollback is thus limited to the
  1304.   amount of video memory you happen to have and you cannot increase this
  1305.   amount.  If you need more scrollback, use some program that buffers
  1306.   the text, like less or screen - by using a buffer on disk you can go
  1307.   back to what you did last week.  (One can set the amount of scrollback
  1308.   for xterm by adding a line like XTerm*saveLines: 2500 in .Xresources.)
  1309.  
  1310.   Upon changing virtual consoles, the screen content of the old VT is
  1311.   copied to kernel memory, and the screen content of the new VT is
  1312.   copied from kernel memory to video memory. Only the visible screen is
  1313.   copied, not all of video memory, so switching consoles means losing
  1314.   the scrollback information.
  1315.  
  1316.   Sometimes, hard scrolling is undesirable, for example when the
  1317.   hardware does not have the possibility to change viewing origin. The
  1318.   first example was a Braille machine that would render the top of video
  1319.   memory in Braille. There is a kernel boot-time option no-scroll to
  1320.   tell the console driver not to use hard scrolling.  See bootparam(7).
  1321.  
  1322.   20.  Screensaving
  1323.  
  1324.   setterm -blank nn will tell the console driver to blank the screen
  1325.   after nn minutes of inactivity. (With nn = 0, screensaving is turned
  1326.   off. In some old kernels this first took effect after the next
  1327.   keyboard interrupt.)
  1328.  
  1329.   The s option of xset(1) will set the X screensaving parameters: xset s
  1330.   off turns off the screensaver, xset s 10 blanks the screen after 10
  1331.   minutes.
  1332.  
  1333.   The video hardware powersaving modes can be enabled/disabled using the
  1334.   setvesablank program given in the starting comment of
  1335.   /usr/src/linux/drivers/char/vesa_blank.c.
  1336.  
  1337.   21.  Screen dumps
  1338.  
  1339.   setterm -dump N will dump the contents of the screen of /dev/ttyN to a
  1340.   file screen.dump in the current directory. See setterm(1).
  1341.  
  1342.   The current contents of the screen of /dev/ttyN can be accessed using
  1343.   the device /dev/vcsN (where `vcs' stands for `virtual console
  1344.   screen').  For example, you could have a clock program that displays
  1345.   the current time in the upper right hand corner of the console screen
  1346.   (see the program vcstime in kbd-0.95.tar.gz).  Just dumping the
  1347.   contents goes with cat /dev/vcsN.  These device files /dev/vcsN do not
  1348.   contain newlines, and do not contain attributes, like colors. From a
  1349.   program it is usually better to use /dev/vcsaN (`virtual console
  1350.   screen with attributes') instead - it starts with a header giving the
  1351.   number of rows and columns and the location of the cursor.  See
  1352.   vcs(4).
  1353.  
  1354.   22.  Some properties of the VT100 - application key mode
  1355.  
  1356.   : Sometimes my cursor keys or keypad keys produce strange codes?
  1357.  
  1358.   When the terminal is in application cursor key mode the cursor keys
  1359.   produce  Esc O x  and otherwise  Esc [ x  where x is one of A,B,C,D.
  1360.   Certain programs put the terminal in application cursor key mode; if
  1361.   you kill them with kill -9, or if they crash, then the mode will not
  1362.   be reset.
  1363.           % echo -e '\033c'
  1364.  
  1365.   resets all properties of the current VC. Just changing the cursor
  1366.   application key mode is done by
  1367.  
  1368.           % echo -e '\033[?1h'
  1369.  
  1370.   (set) and
  1371.  
  1372.           % echo -e '\033[?1l'
  1373.  
  1374.   (clear).
  1375.  
  1376.   When the terminal is in application keypad key mode the keypad keys
  1377.   produce  Esc O y  and otherwise  Esc [ z ~  for certain y and z.
  1378.   Setting application keypad key mode is done by
  1379.  
  1380.           % echo -e '\033='
  1381.  
  1382.   and
  1383.  
  1384.           % echo -e '\033>'
  1385.  
  1386.   clears it again.
  1387.  
  1388.   23.  Hardware incompatibility
  1389.  
  1390.   Several people have noticed that they lose typed characters when a
  1391.   floppy disk is active. It seems that this might be a problem with
  1392.   Uni-486WB motherboards.  (Please mail me (aeb@cwi.nl) to confirm [yes,
  1393.   I have the same problem], deny [no, nothing wrong with my Uni-486WB],
  1394.   modify [My Xyzzy machine has the same problem].)
  1395.  
  1396.   Tjalling Tjalkens (tjalling@ei.ele.tue.nl) reports very similar
  1397.   problems with "a no-brand GMB-486 UNP Vesa motherboard with AMD
  1398.   486DX2-66 CPU" - during floppy activity some keystrokes are lost,
  1399.   during floppy tape streamer (Conner C 250 MQ) activity many keystrokes
  1400.   are lost.
  1401.  
  1402.   Some people experience sporadic lockups - sometimes associated to hard
  1403.   disk activity or other I/O.
  1404.  
  1405.   Ulf Tietz (ulf@rio70.bln.sni.de) wrote: `I have had the same problems,
  1406.   when I had my motherboard tuned too fast.  So I reset all the timings
  1407.   ( CLK, wait statements etc ) to more conventional values, and the
  1408.   problems are gone.'
  1409.  
  1410.   Bill Hogan (bhogan@crl.com) wrote: `If you have an AMI BIOS, you might
  1411.   try setting the Gate A20 emulation parameter to "chipset" (if you have
  1412.   that option). Whenever I have had that parameter set to any of the
  1413.   other options on my machine ("fast", "both", "disabled") I have had
  1414.   frequent keyboard lockups.'
  1415.  
  1416.   --------------------------------------------------------------------
  1417.  
  1418.   Additions and corrections are welcome.  Andries Brouwer - aeb@cwi.nl
  1419.  
  1420.